home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / zupath.c < prev    next >
C/C++ Source or Header  |  1996-09-13  |  13KB  |  522 lines

  1. /* Copyright (C) 1990, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zupath.c */
  20. /* Operators related to user paths */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "idict.h"
  25. #include "dstack.h"
  26. #include "igstate.h"
  27. #include "iutil.h"
  28. #include "store.h"
  29. #include "stream.h"
  30. #include "ibnum.h"
  31. #include "gsmatrix.h"
  32. #include "gsstate.h"
  33. #include "gscoord.h"
  34. #include "gspaint.h"
  35. #include "gxfixed.h"
  36. #include "gxdevice.h"
  37. #include "gspath.h"
  38. #include "gzpath.h"        /* for saving path */
  39. #include "gzstate.h"        /* for accessing path */
  40.  
  41. /* Forward references */
  42. private int upath_append(P2(os_ptr, os_ptr));
  43. private int upath_stroke(P1(os_ptr));
  44.  
  45. /* ------ Insideness testing ------ */
  46.  
  47. /* Forward references */
  48. private int in_test(P2(os_ptr, int (*)(P1(gs_state *))));
  49. private int in_path(P3(os_ptr, os_ptr, gx_device *));
  50. private int in_path_result(P3(os_ptr, int, int));
  51. private int in_utest(P2(os_ptr, int (*)(P1(gs_state *))));
  52. private int in_upath(P2(os_ptr, gx_device *));
  53. private int in_upath_result(P3(os_ptr, int, int));
  54.  
  55. /* We use invalidexit, which the painting procedures cannot generate, */
  56. /* as an "error" to indicate that the hit detection device found a hit. */
  57. #define e_hit e_invalidexit
  58.  
  59. /* <x> <y> ineofill <bool> */
  60. /* <userpath> ineofill <bool> */
  61. private int
  62. zineofill(os_ptr op)
  63. {    return in_test(op, gs_eofill);
  64. }
  65.  
  66. /* <x> <y> infill <bool> */
  67. /* <userpath> infill <bool> */
  68. private int
  69. zinfill(os_ptr op)
  70. {    return in_test(op, gs_fill);
  71. }
  72.  
  73. /* <x> <y> instroke <bool> */
  74. /* <userpath> instroke <bool> */
  75. private int
  76. zinstroke(os_ptr op)
  77. {    return in_test(op, gs_stroke);
  78. }
  79.  
  80. /* <x> <y> <userpath> inueofill <bool> */
  81. /* <userpath1> <userpath2> inueofill <bool> */
  82. private int
  83. zinueofill(os_ptr op)
  84. {    return in_utest(op, gs_eofill);
  85. }
  86.  
  87. /* <x> <y> <userpath> inufill <bool> */
  88. /* <userpath1> <userpath2> inufill <bool> */
  89. private int
  90. zinufill(os_ptr op)
  91. {    return in_utest(op, gs_fill);
  92. }
  93.  
  94. /* <x> <y> <userpath> inustroke <bool> */
  95. /* <userpath1> <userpath2> inustroke <bool> */
  96. private int
  97. zinustroke(os_ptr op)
  98. {    /* This is different because of the optional matrix operand. */
  99.     int code = gs_gsave(igs);
  100.     int spop, npop;
  101.     gx_device hdev;
  102.  
  103.     if ( code < 0 ) return code;
  104.     if ( (spop = upath_stroke(op)) < 0 ||
  105.          (npop = in_path(op - spop, op, &hdev)) < 0
  106.        )
  107.        {    gs_grestore(igs);
  108.         return code;
  109.        }
  110.     code = gs_stroke(igs);
  111.     return in_upath_result(op, npop + spop, code);
  112. }
  113.  
  114. /* ------ Internal routines ------ */
  115.  
  116. /* Define a minimal device for insideness testing. */
  117. /* It returns e_hit whenever it is asked to actually paint any pixels. */
  118. private dev_proc_fill_rectangle(hit_fill_rectangle);
  119. private gx_device hit_device =
  120. {    std_device_std_body(gx_device, 0, "hit detector",
  121.       0, 0, 1, 1),
  122.     {    NULL,            /* open_device */
  123.         NULL,            /* get_initial_matrix */
  124.         NULL,            /* sync_output */
  125.         NULL,            /* output_page */
  126.         NULL,            /* close_device */
  127.         gx_default_map_rgb_color,
  128.         gx_default_map_color_rgb,
  129.         hit_fill_rectangle
  130.     }
  131. };
  132. /* Test for a hit when filling a rectangle. */
  133. private int
  134. hit_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  135.   gx_color_index color)
  136. {    return (w > 0 && h > 0 ? e_hit : 0);
  137. }
  138.  
  139. /* Do the work of the non-user-path insideness operators. */
  140. private int
  141. in_test(os_ptr op, int (*paintproc)(P1(gs_state *)))
  142. {    gx_device hdev;
  143.     int npop = in_path(op, op, &hdev);
  144.     int code;
  145.  
  146.     if ( npop < 0 ) return npop;
  147.     code = (*paintproc)(igs);
  148.     return in_path_result(op, npop, code);
  149. }
  150.  
  151. /* Set up a clipping path and device for insideness testing. */
  152. private int
  153. in_path(os_ptr oppath, os_ptr op, gx_device *phdev)
  154. {    int code = gs_gsave(igs);
  155.     int npop;
  156.     float uxy[2];
  157.  
  158.     if ( code < 0 )
  159.       return code;
  160.     code = num_params(oppath, 2, uxy);
  161.     if ( code >= 0 )
  162.        {    /* Aperture is a single pixel. */
  163.         gs_point dxy;
  164.         gs_fixed_rect fr;
  165.         gs_transform(igs, uxy[0], uxy[1], &dxy);
  166.         fr.p.x = fixed_floor(float2fixed(dxy.x));
  167.         fr.p.y = fixed_floor(float2fixed(dxy.y));
  168.         fr.q.x = fr.p.x + fixed_1;
  169.         fr.q.y = fr.p.y + fixed_1;
  170.         code = gx_clip_to_rectangle(igs, &fr);
  171.         npop = 2;
  172.        }
  173.     else
  174.        {    /* Aperture is a user path. */
  175.         /* We have to set the clipping path without disturbing */
  176.         /* the current path. */
  177.         gx_path save;
  178.         save = *igs->path;
  179.         gx_path_reset(igs->path);    /* prevent newpath from */
  180.                         /* releasing path */
  181.         code = upath_append(oppath, op);
  182.         if ( code >= 0 )
  183.           code = gx_clip_to_path(igs);
  184.         gs_newpath(igs);        /* release upath */
  185.         *igs->path = save;
  186.         npop = 1;
  187.        }
  188.     if ( code < 0 )
  189.        {    gs_grestore(igs);
  190.         return code;
  191.        }
  192.     /* Install the hit detection device. */
  193.     gx_set_device_color_1(igs);
  194.     *phdev = hit_device;
  195.     gx_device_fill_in_procs(phdev);
  196.     gx_set_device_only(igs, phdev);
  197.     return npop;
  198. }
  199.  
  200. /* Finish an insideness test. */
  201. private int
  202. in_path_result(os_ptr op, int npop, int code)
  203. {    int result;
  204.     gs_grestore(igs);        /* matches gsave in in_path */
  205.     switch ( code )
  206.        {
  207.     case e_hit:            /* found a hit */
  208.         result = 1;
  209.         break;
  210.     case 0:                /* completed painting without a hit */
  211.         result = 0;
  212.         break;
  213.     default:            /* error */
  214.         return code;
  215.        }
  216.     npop--;
  217.     pop(npop); op -= npop;
  218.     make_bool(op, result);
  219.     return 0;
  220.         
  221. }
  222.  
  223. /* Do the work of the user-path insideness operators. */
  224. private int
  225. in_utest(os_ptr op, int (*paintproc)(P1(gs_state *)))
  226. {    gx_device hdev;
  227.     int npop = in_upath(op, &hdev);
  228.     int code;
  229.  
  230.     if ( npop < 0 ) return npop;
  231.     code = (*paintproc)(igs);
  232.     return in_upath_result(op, npop, code);
  233. }
  234.  
  235. /* Set up a clipping path and device for insideness testing */
  236. /* with a user path. */
  237. private int
  238. in_upath(os_ptr op, gx_device *phdev)
  239. {    int code = gs_gsave(igs);
  240.     int npop;
  241.  
  242.     if ( code < 0 ) return code;
  243.     if ( (code = upath_append(op, op)) < 0 ||
  244.          (npop = in_path(op - 1, op, phdev)) < 0
  245.        )
  246.        {    gs_grestore(igs);
  247.         return code;
  248.        }
  249.     return npop + 1;
  250. }
  251.  
  252. /* Finish an insideness test with a user path. */
  253. private int
  254. in_upath_result(os_ptr op, int npop, int code)
  255. {    gs_grestore(igs);    /* matches gsave in in_upath */
  256.     return in_path_result(op, npop, code);
  257. }
  258.  
  259. /* ------ User paths ------ */
  260.  
  261. /* User path operator codes */
  262. typedef enum {
  263.   upath_setbbox = 0,
  264.   upath_moveto = 1,
  265.   upath_rmoveto = 2,
  266.   upath_lineto = 3,
  267.   upath_rlineto = 4,
  268.   upath_curveto = 5,
  269.   upath_rcurveto = 6,
  270.   upath_arc = 7,
  271.   upath_arcn = 8,
  272.   upath_arct = 9,
  273.   upath_closepath = 10,
  274.   upath_ucache = 11
  275. } upath_op;
  276. #define upath_op_max 11
  277. #define upath_repeat 32
  278. static byte up_nargs[upath_op_max + 1] =
  279.    { 4, 2, 2, 2, 2, 6, 6, 5, 5, 5, 0, 0 };
  280. /* Declare operator procedures not declared in opextern.h. */
  281. int zsetbbox(P1(os_ptr));
  282. int zarc(P1(os_ptr));
  283. int zarcn(P1(os_ptr));
  284. int zarct(P1(os_ptr));
  285. private int zucache(P1(os_ptr));
  286. #undef zp
  287. static op_proc_p up_ops[upath_op_max + 1] =
  288.    {    zsetbbox, zmoveto, zrmoveto, zlineto, zrlineto,
  289.     zcurveto, zrcurveto, zarc, zarcn, zarct,
  290.     zclosepath, zucache
  291.    };
  292.  
  293. /* - ucache - */
  294. private int
  295. zucache(os_ptr op)
  296. {    /* A no-op for now. */
  297.     return 0;
  298. }
  299.  
  300. /* <userpath> uappend - */
  301. private int
  302. zuappend(register os_ptr op)
  303. {    int code = gs_gsave(igs);
  304.     if ( code < 0 ) return code;
  305.     if ( (code = upath_append(op, op)) >= 0 )
  306.         code = gs_upmergepath(igs);
  307.     gs_grestore(igs);
  308.     if ( code < 0 ) return code;
  309.     pop(1);
  310.     return 0;
  311. }
  312.  
  313. /* <userpath> ueofill - */
  314. private int
  315. zueofill(register os_ptr op)
  316. {    int code = gs_gsave(igs);
  317.     if ( code < 0 ) return code;
  318.     if ( (code = upath_append(op, op)) >= 0 )
  319.         code = gs_eofill(igs);
  320.     gs_grestore(igs);
  321.     if ( code < 0 ) return code;
  322.     pop(1);
  323.     return 0;
  324. }
  325.  
  326. /* <userpath> ufill - */
  327. private int
  328. zufill(register os_ptr op)
  329. {    int code = gs_gsave(igs);
  330.     if ( code < 0 ) return code;
  331.     if ( (code = upath_append(op, op)) >= 0 )
  332.         code = gs_fill(igs);
  333.     gs_grestore(igs);
  334.     if ( code < 0 ) return code;
  335.     pop(1);
  336.     return 0;
  337. }
  338.  
  339. /* <userpath> ustroke - */
  340. /* <userpath> <matrix> ustroke - */
  341. private int
  342. zustroke(register os_ptr op)
  343. {    int code = gs_gsave(igs);
  344.     int npop;
  345.     if ( code < 0 ) return code;
  346.     if ( (code = npop = upath_stroke(op)) >= 0 )
  347.         code = gs_stroke(igs);
  348.     gs_grestore(igs);
  349.     if ( code < 0 ) return code;
  350.     pop(npop);
  351.     return 0;
  352. }
  353.  
  354. /* <userpath> ustrokepath - */
  355. /* <userpath> <matrix> ustrokepath - */
  356. private int
  357. zustrokepath(register os_ptr op)
  358. {    int code = gs_gsave(igs);
  359.     int npop;
  360.     if ( code < 0 ) return code;
  361.     if ( (code = npop = upath_stroke(op)) < 0 ||
  362.          (code = gs_strokepath(igs)) < 0 ||
  363.          (code = gs_upmergepath(igs)) < 0
  364.        )
  365.         DO_NOTHING;
  366.     gs_grestore(igs);
  367.     if ( code < 0 ) return code;
  368.     pop(npop);
  369.     return 0;
  370. }
  371.  
  372. /* --- Internal routines --- */
  373.  
  374. /* Append a user path to the current path. */
  375. private int
  376. upath_append(os_ptr oppath, os_ptr op)
  377. {    check_read(*oppath);
  378.     gs_newpath(igs);
  379.     /****** ROUND tx AND ty ******/
  380.     if ( r_has_type(oppath, t_array) && r_size(oppath) == 2 &&
  381.          r_has_type(oppath->value.refs + 1, t_string)
  382.        )
  383.     {    /* 1st element is operators, 2nd is operands */
  384.         const ref *operands = oppath->value.refs;
  385.         int code, format;
  386.         int repcount = 1;
  387.         const byte *opp;
  388.         uint ocount, i = 0;
  389.  
  390.         code = num_array_format(operands);
  391.         if ( code < 0 )
  392.           return code;
  393.         format = code;
  394.         opp = oppath->value.refs[1].value.bytes;
  395.         ocount = r_size(&oppath->value.refs[1]);
  396.         while ( ocount-- )
  397.            {    byte opx = *opp++;
  398.             if ( opx > 32 )
  399.               repcount = opx - 32;
  400.             else if ( opx > upath_op_max )
  401.               return_error(e_rangecheck);
  402.             else        /* operator */
  403.                {    do
  404.                    {    byte opargs = up_nargs[opx];
  405.                     while ( opargs-- )
  406.                        {    push(1);
  407.                         code = num_array_get(operands, format, i++, op);
  408.                         switch ( code )
  409.                            {
  410.                         case t_integer:
  411.                             r_set_type_attrs(op, t_integer, 0);
  412.                             break;
  413.                         case t_real:
  414.                             r_set_type_attrs(op, t_real, 0);
  415.                             break;
  416.                         default:
  417.                             return_error(e_typecheck);
  418.                            }
  419.                        }
  420.                     code = (*up_ops[opx])(op);
  421.                     if ( code < 0 ) return code;
  422.                     op = osp;    /* resync */
  423.                    }
  424.                 while ( --repcount );
  425.                 repcount = 1;
  426.                }
  427.            }
  428.     }
  429.     else if ( r_is_array(oppath) )
  430.     {    /* Ordinary executable array. */
  431.         const ref *arp = oppath;
  432.         uint ocount = r_size(oppath);
  433.         long index = 0;
  434.         int argcount = 0;
  435.         int (*oproc)(P1(os_ptr));
  436.         int opx, code;
  437.  
  438.         for ( ; index < ocount; index++ )
  439.           { ref rup;
  440.             ref *defp;
  441.  
  442.             array_get(arp, index, &rup);
  443.             switch ( r_type(&rup) )
  444.               {
  445.               case t_integer:
  446.               case t_real:
  447.             argcount++;
  448.             push(1);
  449.             *op = rup;
  450.             break;
  451.               case t_name:
  452.             if ( !r_has_attr(&rup, a_executable) )
  453.                 return_error(e_typecheck);
  454.             if ( dict_find(systemdict, &rup, &defp) <= 0 )
  455.                 return_error(e_undefined);
  456.             if ( r_btype(defp) != t_operator )
  457.                 return_error(e_typecheck);
  458.             goto xop;
  459.               case t_operator:
  460.             defp = &rup;
  461. xop:            if ( !r_has_attr(defp, a_executable) )
  462.                 return_error(e_typecheck);
  463.             oproc = real_opproc(defp);
  464.             for ( opx = 0; opx <= upath_op_max; opx++ )
  465.                 if ( oproc == up_ops[opx] ) break;
  466.             if ( opx > upath_op_max || argcount != up_nargs[opx] )
  467.                 return_error(e_typecheck);
  468.             code = (*oproc)(op);
  469.             if ( code < 0 ) return code;
  470.             op = osp;    /* resync ostack pointer */
  471.             argcount = 0;
  472.             break;
  473.               default:
  474.             return_error(e_typecheck);
  475.               }
  476.            }
  477.         if ( argcount )
  478.             return_error(e_typecheck);    /* leftover args */
  479.     }
  480.     else
  481.       return_error(e_typecheck);
  482.     return 0;
  483. }
  484.  
  485. /* Append a user path to the current path, and then apply */
  486. /* a transformation if one is supplied. */
  487. private int
  488. upath_stroke(register os_ptr op)
  489. {    int code, npop;
  490.     gs_matrix mat;
  491.     if ( (code = read_matrix(op, &mat)) >= 0 )
  492.        {    if ( (code = upath_append(op - 1, op)) >= 0 )
  493.             code = gs_concat(igs, &mat);
  494.         npop = 2;
  495.        }
  496.     else
  497.        {    code = upath_append(op, op);
  498.         npop = 1;
  499.        }
  500.     return (code < 0 ? code : npop);
  501. }
  502.  
  503. /* ------ Initialization procedure ------ */
  504.  
  505. BEGIN_OP_DEFS(zupath_l2_op_defs) {
  506.         op_def_begin_level2(),
  507.         /* Insideness testing */
  508.     {"1ineofill", zineofill},
  509.     {"1infill", zinfill},
  510.     {"1instroke", zinstroke},
  511.     {"2inueofill", zinueofill},
  512.     {"2inufill", zinufill},
  513.     {"2inustroke", zinustroke},
  514.         /* User paths */
  515.     {"1uappend", zuappend},
  516.     {"1ueofill", zueofill},
  517.     {"1ufill", zufill},
  518.     {"1ustroke", zustroke},
  519.     {"1ustrokepath", zustrokepath},
  520.     {"0ucache", zucache},
  521. END_OP_DEFS(0) }
  522.